home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000220_news@columbia.edu_Mon Nov 21 17:31:42 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05353
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 12:31:46 -0500
  3. Received: by apakabar.cc.columbia.edu id AA08008
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 12:31:44 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Help: file transfer problem
  9. Date: 21 Nov 1994 17:31:42 GMT
  10. Organization: Columbia University
  11. Lines: 32
  12. Message-Id: <3aqlhu$7q6@apakabar.cc.columbia.edu>
  13. References: <CzMLA2.K01@liverpool.ac.uk>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <CzMLA2.K01@liverpool.ac.uk>,
  18. Prof X. Chen <xchen@liverpool.ac.uk> wrote:
  19. >I use MSKermit 3.13 for the communication between my PC and University
  20. >Unix system. When I use it to transfer files, it is ok to download
  21. >files to my PC in a reasonable speed. However, if I try to send files
  22. >to the remote system, the speed becomes very very slow and often do 
  23. >not work at all.
  24. >
  25. This type of question is answered clearly and at length in the documentation.
  26. Very briefly:  There are five major items to be considered:
  27.  
  28.  1. Interface speed -- use the highest possible speed, lock your modem
  29.     at that speed, and also enable its error-correction and data compression
  30.     features.
  31.  
  32.  2. Flow control -- use the most effective possible means thereof, such as
  33.     RTS/CTS.
  34.  
  35.  3. Use long packets.  Tell the Kermit program which is *receiving* the file
  36.     to "set receive packet-length 2000" (or whatever other number works best).
  37.  
  38.  4. Use sliding windows.  Tell *both* Kermit programs to "set window 4"
  39.     (or other number).
  40.  
  41.  5. Read about control-character unprefixing in the update notes files that
  42.     come with the current releases of C-Kermit and MS-DOS Kermit.
  43.  
  44. Items 1 and 2 are handled automatically by the dialing scripts for high-speed
  45. modems that come with MS-DOS Kermit.  Items 3-5 require some experimentation
  46. to obtain the maximum transfer rate possible on any given connection.
  47.  
  48. - Frank